home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / midaswww-1.0 / SGMLPlainTextP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-16  |  1.4 KB  |  46 lines

  1. /*==================================================================*/
  2. /*                                                                  */
  3. /* SGMLPlainTextObject                                              */
  4. /*                                                                  */
  5. /* T.Johnson - (TonyJ@Slacvx.Slac.Stanford.Edu)           June.92   */
  6. /*                                                                  */
  7. /* Defines a text segment for the SGMLHyper widget                  */
  8. /*                                                                  */
  9. /*==================================================================*/
  10.  
  11. #ifndef SGMLPLAINTEXTP_H
  12. #define SGMLPLAINTEXTP_H
  13.  
  14. #include "SGMLPlainText.h"
  15. #include "SGMLTextP.h"
  16.  
  17. typedef struct _SGMLPlainTextClassPart{
  18.  
  19.     int ignore;   /* no new class elements */
  20.  
  21. } SGMLPlainTextClassPart;
  22.  
  23. typedef struct _SGMLPlainTextClassRec{
  24.  
  25.     ObjectClassPart        object_class;
  26.     SGMLTextClassPart      sgml_text_class;
  27.     SGMLPlainTextClassPart sgml_plain_text_class;
  28.  
  29. } SGMLPlainTextClassRec, *SGMLPlainTextObjectClass;
  30.  
  31. extern SGMLPlainTextClassRec sGMLPlainTextClassRec;
  32.  
  33. typedef struct _SGMLPlainTextPart {
  34.  
  35.     int tabs;  /* controls handling of tabs */ 
  36.  
  37. } SGMLPlainTextPart;
  38.  
  39. typedef struct _SGMLPlainTextRec {
  40.     ObjectPart             object;
  41.     SGMLTextPart           sgml_text;
  42.     SGMLPlainTextPart      sgml_plain_text;
  43. } SGMLPlainTextRec;
  44.  
  45. #endif SGMLPLAINTEXTP_H
  46.